Install ProFTPD
2010/07/26 |
Build FTP server to transfer files. Install and configure ProFTPD for it. |
|
[1] | Install ProFTPD |
root@www05:~# aptitude -y install proftpd # select which Proftpd runs by trough inet or standalone # this example selects standalone root@www05:~# vi /etc/proftpd/proftpd.conf # line 10: change to "off" if not needed UseIPv6 off # line 14: specify server's name ServerName "www05" # line 33: uncomment ( specify chroot's root directory ) DefaultRoot ~ root@www05:~# vi /etc/ftpusers # add users you prohibit FTP connection test root@www05:~# /etc/init.d/proftpd restart * Stopping ftp server proftpd ...done. * Starting ftp server proftpd ...done. |